home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINSOUND / CHIMES.ZIP / CHIMES.RC < prev    next >
Text File  |  1993-06-02  |  1KB  |  46 lines

  1. /* chimes.rc : Defines the resources for the chimes application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. */
  13.  
  14. #include <windows.h>
  15. #include <afxres.h>
  16. #include "resource.h"
  17. #include "maindlg.h"
  18.  
  19. AFX_IDI_STD_FRAME   ICON    chimes.ico
  20.  
  21. MainMenu MENU
  22. {
  23.     POPUP        "&File"
  24.     {
  25.         MENUITEM "&Open...\tCtrl+O", IDM_OPEN
  26.         MENUITEM "E&xit", IDM_EXIT
  27.     }
  28.     POPUP        "&Music"
  29.     {
  30.         MENUITEM "&Play/Stop", IDM_PLAYSTOP
  31.     }
  32.     POPUP        "&Help"
  33.     {
  34.         MENUITEM "&About chimes...\tF1", IDM_ABOUT
  35.     }
  36. }
  37.  
  38. MainAccelTable ACCELERATORS
  39. {
  40.     VK_F1,      IDM_ABOUT,  VIRTKEY
  41.     "O",        IDM_OPEN, VIRTKEY, CONTROL
  42. }
  43.  
  44. rcinclude chimes.dlg
  45. rcinclude maindlg.dlg
  46.